9d5f8c4946cf1852648b1b710b6e24b607791733,Source/com/drew/tools/ProcessAllImagesInFolderUtility.java,TextFileOutputHandler,onExtractionSuccess,#File#Metadata#String#PrintStream#,289

Before Change


                                    XMPIterator iterator = xmpMeta.iterator();
                                    while (iterator.hasNext()) {
                                        XMPPropertyInfo prop = (XMPPropertyInfo)iterator.next();
                                        writer.format("[XMPMeta - %s] %s = %s%s", prop.getNamespace(), prop.getPath(), prop.getValue(), NEW_LINE);
                                        wrote = true;
                                    }
                                } catch (XMPException e) {

After Change


                                XMPIterator iterator = xmpMeta.iterator();
                                while (iterator.hasNext()) {
                                    XMPPropertyInfo prop = (XMPPropertyInfo)iterator.next();
                                    String ns = prop.getNamespace();
                                    String path = prop.getPath();
                                    String value = prop.getValue();

                                    if (ns == null)
                                        ns = "";
                                    if (path == null)
                                        path = "";